home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / bit / src / forms / FORMS / INCLUDE / input.h < prev    next >
Text File  |  1994-08-01  |  938b  |  40 lines

  1. /************   Object Class: Input        ************/
  2.  
  3. /***** Class    *****/
  4.  
  5. #define FL_INPUT        31
  6.  
  7. /***** Types    *****/
  8.  
  9. #define FL_NORMAL_INPUT        0
  10. #define FL_FLOAT_INPUT        1
  11. #define FL_INT_INPUT        2
  12. #define FL_HIDDEN_INPUT        3
  13. #define FL_MULTILINE_INPUT    4
  14. #define FL_SECRET_INPUT        5
  15.  
  16. /***** Defaults *****/
  17.  
  18. #define FL_INPUT_BOXTYPE    FL_DOWN_BOX
  19. #define FL_INPUT_COL1        13
  20. #define FL_INPUT_COL2        5
  21. #define FL_INPUT_LCOL        FL_LCOL
  22. #define FL_INPUT_ALIGN        FL_ALIGN_LEFT
  23.  
  24. /***** Others   *****/
  25.  
  26. #define FL_INPUT_TCOL        FL_LCOL
  27. #define FL_INPUT_CCOL        4
  28. #define FL_INPUT_BW        FL_BOUND_WIDTH
  29.  
  30. /***** Routines *****/
  31.  
  32. FL_OBJECT    *fl_create_input(int, float, float, float, float, const char *);
  33. FL_OBJECT    *fl_add_input(int, float, float, float, float, const char *);
  34.  
  35. void    fl_set_input(FL_OBJECT *, const char *);
  36. void    fl_set_input_color(FL_OBJECT *, int, int);
  37. const char    *fl_get_input(FL_OBJECT *);
  38. void    fl_set_input_return(FL_OBJECT *, int);
  39.  
  40.